home *** CD-ROM | disk | FTP | other *** search
/ ftp.sustworks.com 2018 / ftp.sustworks.com.zip / ftp.sustworks.com / IPNR_FBA_168.sea.hqx / IPNR FBA / IPNetRouter.FBA ReadMe < prev    next >
Text File  |  2001-11-13  |  2KB  |  58 lines

  1. IPNetRouter.FBA ReadMe
  2. Sustainable Softworks
  3. November 13, 2001
  4.  
  5. This ReadMe file contains basic directions to help you get started using
  6. IPNetRouter as a Faceless Background Application (FBA).
  7.  
  8. Before trying to use the FBA version of IPNetRouter, you should
  9. have installed the normal (non FBA) version of IPNetRouter and
  10. have saved a working configuration.   To use the FBA version of 
  11. IPNetRouter, do the following:
  12.  
  13. 1.  Duplicate your working IPNetRouter configuration file and rename
  14. it "Router Config".  
  15.  
  16. 2.  Place the "Router Config" document in your System Preferences folder.
  17.  
  18. 3.  Place the IPNetRouter.FBA file into your Extensions folder.
  19.  
  20. 4.  Place the OTModl$Proxy module in your Extensions folder (use the latest version of OTModl$Proxy if you already have such a module in your Extensions folder).
  21.  
  22. 5.  Remove any aliases of your working IPNetRouter configuration from your
  23. Startup Items folder.
  24.  
  25. 6.  Restart your machine.  You can also use the IPNetRouter FBA Switch Switch application 
  26. to turn off the IPNetRouter FBA
  27.  
  28. Faceless Background Applications are similar to other Macintosh
  29. applications except that they have no user interface so can only
  30. be controlled via Apple Events.  The FBA version of IPNetRouter
  31. is built with Finder file type 'appe' and appears as an Extension
  32. on the desktop.  By placing this file in your Extensions folder,
  33. the IPNetRouter.FBA application will automatically launch at System
  34. Startup but will not appear in the Finder's application menu.
  35. To control this application, you must send it Apple Events.
  36.  
  37. As an alternative to using the IPNetRouter FBA Switch, you can use AppleScript to 
  38. control the IPNetRouter FBA. 
  39.  
  40. Here is an example of how to Quit the IPNetRouter FBA from the Script Editor:
  41.  
  42.     tell application "IPNetRouter.FBA" to quit
  43.  
  44. Here is an example of how to tell the IPNetRouter FBA to open a specific configuration
  45. file called "my settings".  The path name to "my settings" will depend upon where you
  46. store your IPNetRouter settings documents.
  47.  
  48.     tell application "IPNetRouter.FBA" to open file "IPNR:my settings"
  49.  
  50. Using the ScriptEditor, you can modify these scripts to point
  51. to your own settings file and save it as a Run-Only script
  52. to be placed in your Startup Items folder.
  53.  
  54. IPNetRouter writes out the log window to a file named "IPNR.log" in
  55. your Preferences folder so you can check the log even when running
  56. the  FBA version.
  57.  
  58. -------------- End